home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 037a / phello.zip / PHELLO.TXT < prev    next >
Text File  |  1991-04-25  |  2KB  |  70 lines

  1.                               Hello Windows
  2.                            Turbo Pascal Style
  3.                                PHELLO.TXT
  4.  
  5. Introduction
  6. ------------
  7.  
  8. Here are 4 different approaches to 'Hello, World' in Windows using
  9. Turbo Pascal for Windows.
  10.  
  11. These programs and their source code may be freely distributed
  12. for non-commercial use.
  13.  
  14. The files include:
  15.  HELLOCRT.EXE   - Quickest way to a Windows program using WinCrt unit
  16.  HELLOWIN.EXE   - Graphical Hello, Windows program using ObjectWindows
  17.  HELLOOWL.EXE   - ObjectWindows version of Hello, world
  18.  HELLOAPI.EXE   - "Traditional" Windows program accessing Windows API
  19.  *.PAS          - Turbo Pascal for Windows source code
  20.  PHELLO.TXT     - This file
  21.  
  22. If you have received a ZIP file, you must unzip it first.
  23.  
  24. Using Life
  25. ----------
  26.  
  27. These programs require Microsoft Windows 3.0 or later.  To start the
  28. programs start Windows and then use the File Run command to start
  29. any of them.  Or run them directly from the DOS C:> prompt by typing:
  30.  
  31.    WIN <file.EXE>  where <file.EXE> is one of the .EXE files
  32.  
  33.  
  34. Turbo Pascal for Windows Users
  35. ------------------------------
  36.  
  37. This program illustrates some of the basic ideas common to many Windows
  38. programs including mouse and keyboard handling, graphics, resizing,
  39. rescaling and the use of timers.  Feel free to experiment with the
  40. source code to learn how to implement similar features in your own
  41. programs.
  42.  
  43. You can compile these programs with the Windows IDE or the command line
  44. compiler.  To compile with the command line compiler type the following
  45. at the DOS C:> prompt:
  46.  
  47.     TPCW -b <file.PAS>  where <file.PAS> is one of the source files
  48.  
  49.  
  50. About Turbo Pascal for Windows
  51. ------------------------------
  52.  
  53. Turbo Pascal for Windows is a complete development system for creating
  54. Windows applications.  It includes a Windows Integrated Development
  55. Environment, ObjectWindows application framework, and Turbo Debugger for
  56. Windows.  You do not need the Microsoft Windows Software Development Kit
  57. (SDK) to use Turbo Pascal for Windows.
  58.  
  59. For more information about Turbo Pascal for Windows
  60. contact:
  61.  
  62.      Borland International
  63.          1800 Green Hills Rd
  64.          Scotts Valley, CA 95066
  65.          USA
  66.  
  67. or your local distributor.
  68.  
  69.                                     * * *
  70.